notebook.community
Edit and run
Q 2: True / False
Q 3: Theory Questions
In [2]: radius = int(input("Enter the radius:")) Area = 3.14 * radius ** 2 print("The area of the circle is " + str(Area) + "cm**2")
radius = int(input("Enter the radius:")) Area = 3.14 * radius ** 2 print("The area of the circle is " + str(Area) + "cm**2")
Enter the radius:2 The area of the circle is 12.56cm**2